Evaluation Card
fun EvaluationCard(modifier: Modifier = Modifier, title: String, desc: String, completed: Boolean = false, checkMark: Int = 1, onNavigate: () -> Unit)
Composable for an individual evaluation card, including a checkmark if completed.
Parameters
modifier
Modifier for customizations to the layout.
title
The title of the evaluation (e.g., Daily Evaluation, Bi-Weekly Evaluation).
desc
A description for the evaluation (can be left empty).
completed
Boolean flag to indicate if the evaluation is completed.
check Mark
An integer to control whether a checkmark is shown.
on Navigate
A function to navigate when the card is clicked.